5 |
How do I put a picture on the control's background
|
4 |
How can I change the size of control's font
|
3 |
How do I change the control's font
ScrollBar1->Font->Name = L"Tahoma"; ScrollBar1->ForeColor = RGB(255,0,0); ScrollBar1->Caption[Exscrollbarlib_tlb::PartEnum::exThumbPart] = L"<img>0</img>thumb"; |
2 |
How can I change the control's foreground color
ScrollBar1->ForeColor = RGB(255,0,0); ScrollBar1->Caption[Exscrollbarlib_tlb::PartEnum::exThumbPart] = L"<img>0</img>thumb"; |
1 |
How can I change the control's background color
ScrollBar1->BackColor = RGB(0,255,0); ScrollBar1->VisiblePart[Exscrollbarlib_tlb::PartEnum::exBackgroundPart] = false; |